home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Internet
/
Collection of Internet.iso
/
msdos
/
lynx
/
source
/
wattcp
/
elib
/
outhexes.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-10-25
|
178 b
|
15 lines
/*
* outhexes - dump n hex bytes to stdio
*
*/
outhexes( p, n )
char far *p;
int n;
{
while ( n-- > 0) {
outhex( *p++);
outch(' ');
}
}